home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / JM_RF_14.ZIP / LOGOFF.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1995-04-09  |  880b  |  87 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.1O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     String   STRING001
  21.     Declare  Procedure PROC001()
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     PROC001()
  26.     End
  27.  
  28. ;------------------------------------------------------------------------------
  29.  
  30.     Procedure PROC001()
  31.  
  32.     GetUser
  33.     STRING001 = GetEnv("PCBDRIV") + GetEnv("PCBDIR")
  34.     If (Exist(STRING001 + "FLIST." + String(PcbNode()))) Then
  35.         SPrintLn "FLAGGED files still exist! I will be saving them for future user use!"
  36.         INTEGER001 = U_RecNum(U_Name())
  37.         Copy STRING001 + "FLIST." + String(PcbNode()), PPEPath() + "R" + String(INTEGER001) + ".HNG"
  38.     Endif
  39.  
  40.     EndProc
  41.  
  42.  
  43. ;------------------------------------------------------------------------------
  44. ;
  45. ; Usage report (before postprocessing)
  46. ;
  47. ; ■ Statements used :
  48. ;
  49. ;    1       End
  50. ;    2       Goto 
  51. ;    2       Let 
  52. ;    1       If 
  53. ;    1       GetUser
  54. ;    1       SPrintLn 
  55. ;    1       Copy 
  56. ;    1       EndProc
  57. ;
  58. ;
  59. ; ■ Functions used :
  60. ;
  61. ;    8       +
  62. ;    1       !
  63. ;    1       U_Name()
  64. ;    3       String()
  65. ;    1       PPEPath()
  66. ;    2       PcbNode()
  67. ;    2       GetEnv()
  68. ;    1       Exist()
  69. ;    1       U_RecNum()
  70. ;
  71. ;------------------------------------------------------------------------------
  72. ;
  73. ; Analysis flags : No flag
  74. ;
  75. ;------------------------------------------------------------------------------
  76. ;
  77. ; Postprocessing report
  78. ;
  79. ;    0       For/Next
  80. ;    0       While/EndWhile
  81. ;    1       If/Then or If/Then/Else
  82. ;    0       Select Case
  83. ;
  84. ;------------------------------------------------------------------------------
  85. ;                 AEGiS Corp - Break the routines, code against the machines!
  86. ;------------------------------------------------------------------------------
  87.